home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / mig / RCS / Mig_Done.c,v < prev    next >
Text File  |  1990-06-22  |  3KB  |  122 lines

  1. head     2.1;
  2. branch   ;
  3. access   ;
  4. symbols  no-auto-remigrate:2.1 installed:2.0;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 2.1
  10. date     90.06.22.14.58.19;  author douglis;  state Exp;
  11. branches ;
  12. next     2.0;
  13.  
  14. 2.0
  15. date     90.03.10.13.12.40;  author douglis;  state Stable;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     90.02.16.14.28.07;  author douglis;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @Source code for the Mig_Done procedure, which is a backward-compatible
  27. interface to the migration daemon.
  28. @
  29.  
  30.  
  31. 2.1
  32. log
  33. @changes for alarms for timeouts with migd and for printing to stderr instead of syslog
  34. @
  35. text
  36. @/* 
  37.  * Mig_Done.c --
  38.  *
  39.  *    Source code for the Mig_Done procedure, which is a backward-compatible
  40.  *    interface to the migration daemon.
  41.  *
  42.  * Copyright 1990 Regents of the University of California
  43.  * Permission to use, copy, modify, and distribute this
  44.  * software and its documentation for any purpose and without
  45.  * fee is hereby granted, provided that the above copyright
  46.  * notice appear in all copies.  The University of California
  47.  * makes no representations about the suitability of this
  48.  * software for any purpose.  It is provided "as is" without
  49.  * express or implied warranty.
  50.  */
  51.  
  52. #ifndef lint
  53. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/Mig_Done.c,v 2.0 90/03/10 13:12:40 douglis Stable Locker: douglis $ SPRITE (Berkeley)";
  54. #endif not lint
  55.  
  56.  
  57. #include <sprite.h>
  58. #include <mig.h>
  59. #include <host.h>
  60. #include <errno.h>
  61. #include <stdio.h>
  62.  
  63. extern int errno;
  64. extern char *strerror();
  65. extern char *malloc();
  66.  
  67.  
  68. /*
  69.  *----------------------------------------------------------------------
  70.  *
  71.  * Mig_Done --
  72.  *
  73.  *    Record that a migrated process has finished running on a particular
  74.  *    host.
  75.  *
  76.  * Results:
  77.  *    A non-zero status indicates an error, in which case errno reflects
  78.  *    the error from the migration daemon.
  79.  *
  80.  * Side effects:
  81.  *      None.
  82.  *
  83.  *----------------------------------------------------------------------
  84.  */
  85. int
  86. Mig_Done(hostID)
  87.     int hostID;            /* Host to return. */
  88. {
  89.     int hostArray[1];
  90.  
  91.     hostArray[0] = hostID;
  92.     
  93.     return(Mig_ReturnHosts(1, hostArray));
  94. }
  95.  
  96.  
  97. @
  98.  
  99.  
  100. 2.0
  101. log
  102. @Changing version numbers.
  103. @
  104. text
  105. @d18 1
  106. a18 1
  107. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/Mig_Done.c,v 1.1 90/02/16 14:28:07 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  108. a23 1
  109. #include <syslog.h>
  110. @
  111.  
  112.  
  113. 1.1
  114. log
  115. @Initial revision
  116. @
  117. text
  118. @d18 1
  119. a18 1
  120. static char rcsid[] = "$Header: /user2/douglis/pdev_mig/test/RCS/Mig_Done.c,v 1.1 90/02/01 18:48:34 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  121. @
  122.